home *** CD-ROM | disk | FTP | other *** search
/ Software Vault: The Gold Collection / Software Vault - The Gold Collection (American Databankers) (1993).ISO / cdr25 / me310.zip / UE310MAK.ZIP / MAKEFILE.UNX < prev    next >
Text File  |  1989-02-04  |  588b  |  17 lines

  1. CFLAGS=        -O
  2.  
  3. OFILES=        basic.o bind.o buffer.o char.o crypt.o display.o eval.o \
  4.         exec.o file.o fileio.o input.o isearch.o line.o lock.o main.o \
  5.         mouse.o random.o region.o search.o tcap.o unix.o window.o word.o
  6.  
  7. CFILES=        basic.c bind.c buffer.c char.c crypt.c display.c eval.c \
  8.         exec.c file.c fileio.c input.c isearch.c line.c lock.c main.c \
  9.         mouse.c random.c region.c search.c tcap.c unix.c window.c word.c
  10.  
  11. HFILES=        estruct.h edef.h efunc.h epath.h ebind.h evar.h etype.h
  12.  
  13. emacs:        $(OFILES)
  14.         $(CC) $(CFLAGS) $(OFILES) -ltermcap -lc -o emacs
  15.  
  16. $(OFILES):    $(HFILES)
  17.